home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
-
- set -e
-
- if [ "$1" = "purge" ]; then
- # here for historical reasons
- rm -f /var/log/anacron /var/log/anacron.[0-9]*
- rm -rf /var/spool/anacron
- fi
-
- # Automatically added by dh_installinit
- if [ "$1" = "purge" ] ; then
- update-rc.d anacron remove >/dev/null || exit $?
- fi
- # End automatically added section
-
-